home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 April: Mac OS SDK / Dev.CD Apr 98 SDK1.toast / Development Kits (Disc 1) / QuickDraw 3D / Samples / SampleCode / Plug-in - DistanceProxyGroup / header / dpgIO.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-14  |  1020 b   |  46 lines  |  [TEXT/MPS ]

  1. /******************************************************************************
  2.  **                                                                             **
  3.  **     Module:        dpgIO.h                                                      **
  4.  **                                                                          **
  5.  **                                                                          **
  6.  **                                                                          **
  7.  **                                                                          **
  8.  **                                                                          **
  9.  **     Copyright (C) 1995-1996 Apple Computer, Inc.  All rights reserved.     **
  10.  **                                                                          **
  11.  **                                                                          **
  12.  *****************************************************************************/
  13.  
  14. #ifndef dpgIO_h
  15. #define dpgIO_h
  16.  
  17. #if PRAGMA_ONCE
  18.     #pragma once
  19. #endif
  20.  
  21. #include "QD3D.h"
  22. #include "QD3DIO.h"
  23. #include "QD3DGroup.h"
  24. #include "QD3DExtension.h"
  25.  
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif /*  __cplusplus  */
  29.  
  30. TQ3GroupObject exDistanceProxyGroup_Read(
  31.     TQ3FileObject        file);
  32.     
  33. TQ3Status exDistanceProxyGroup_Traverse(
  34.     TQ3GroupObject        group,
  35.     void                *unused,
  36.     TQ3ViewObject        view);
  37.     
  38. TQ3Status exDistanceProxyGroup_Write(
  39.     TQ3GroupObject        group,
  40.     TQ3FileObject        file);
  41.  
  42. #ifdef __cplusplus
  43. }
  44. #endif /*  __cplusplus  */
  45.  
  46. #endif